reset
set encoding utf8
set term svg size 600, 800             # qt, windows, wxt, svg, png, jpg etc. (qt erlaubt Export nach SVG und PNG)
                                       # Werden Zeichnungen von einem Terminal exportiert, so sind die Ergebnisse nicht
                                       # mit denen der standardspezifischen Terminals identisch.
set size 1, 1
set   autoscale                        # scale axes automatically
unset log                              # remove any log-scaling
unset label                            # remove any previous labels
unset arrow
set xtics auto                          # set xtics automatically
set ytics auto                          # set ytics automatically
set title "Hubble-Parameter in 1/s" font ", 25"     # Titel der Zeichnung
set xlabel "Log10 (Hubble-Parameter in 1/s)" font ", 25"   # Bezeichnung x-Achse (waagerecht)
set ylabel "Log10 (Mrd. Jahre)" font ", 25"     # Bezeichnung y-Achse (senkrecht)
set tics font ", 19"  
set xrange [-18:-1]   
set x2range [-18:-1]                    # set x-Achse, -15 bis +15 Mrd. Lichtjahre
set yrange [-15:2]                       # set y-Achse (t-Achse, 0-42 Mrd. Jahre)
set y2range [-15:2] 
set datafile fortran                   # damit auch FORTRAN-D- und -G-Formate interpretiert werden können. Es wird aber momentan kein Gebrauch davon gemacht.
set datafile separator comma
unset key
set key top right
#set key top center
#set key box
#set key left bottom
#set key bmargin 
set key off

unset border
set border
#set ytics nomirror
set x2tics
set y2tics
set rmargin 7

set output "abbh-phys.svg"
set arrow from -18,1.13958590 to -1,1.13958590 nohead lw 2.0 lt rgb "orange10" 
set arrow from -18,-3.43047745 to -1,-3.43047745 nohead lw 2.0 lt rgb "cyan10" 
set arrow from -18,0.15719372 to -1,0.15719372 nohead lw 2.0 lt rgb "red10"
set arrow from -18,0.60782073 to -1,0.60782073 nohead lw 2.0 lt rgb "green10"
set arrow from -18,0.88610564 to -1,0.88610564 nohead lw 2.0 lt rgb "dark-violet"
plot "Z42_q.TXT"  using 5:1 with lines lw 2.0 lt rgb "black"




